home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Amiga Plus 2004 #9
/
Amiga Plus CD - 2004 - No. 09.iso
/
amigaplus
/
tools
/
amigaos4_only
/
ifxlite
/
imagefx3
/
rexx
/
autofx
/
savebufferas_ilbm.ifx
< prev
next >
Wrap
Text File
|
2004-08-03
|
1KB
|
58 lines
/*
* $VER: SaveBufferAs_ILBM.ifx 2.5 (27.02.96)
* Copyright © 1992-1996 Nova Design, Inc.
* Written by Thomas Krehbiel
*
* Save main buffer as ILBM.
*
* Inputs:
* Word(Arg(1),1) = Frame number (1 - N)
* Word(Arg(1),2) = Main filename ("-" if not specified)
* Word(Arg(1),3) = Swap filename ("-" if not specified)
* Word(Arg(1),4) = Sequence number (?)
* Word(Arg(1),5) = Total number of frames (N)
*
* Returns:
* 0 if successful, non-zero on failure
*
*/
OPTIONS RESULTS
framenum = Word(Arg(1),1)
mainname = Word(Arg(1),2)
swapname = Word(Arg(1),3)
seq = Word(Arg(1),4)
framemax = Word(Arg(1),5)
base = 'Autofx_SaveBufferAsILBM_'
path = GETCLIP(base||'Path'||seq)
ext = GETCLIP(base||'Ext'||seq)
/* gracefully exit if no buffer */
GetMain
IF rc ~= 0 THEN EXIT 0
i = POS('*', ext)
IF i > 0 THEN ext = LEFT(ext,i-1) || RIGHT('00000'||framenum,5) || SUBSTR(ext,i+1)
outfile = mainname||ext
IF path ~= "" THEN DO
i = LASTPOS('/',mainname)
IF i = 0 THEN i = LASTPOS(':',mainname)
IF i = 0 THEN
file = mainname
ELSE
file = SUBSTR(mainname,i+1)
IF RIGHT(path,1) ~= ':' THEN path = path||'/'
outfile = path||file||ext
END
SaveBufferAs ILBM '"'outfile'"'
EXIT rc